home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 60.zip / BS1 part 60 / Highspeed pascal.adf / Interface / CIA.pas < prev    next >
Pascal/Delphi Source File  |  1992-01-16  |  436b  |  33 lines

  1. Unit CIA;
  2.  
  3. Interface
  4. Uses Exec;
  5.  
  6. Type
  7.   pInterrupt = ^tInterrupt;
  8.   pLibrary = ^tLibrary;
  9.  
  10.  
  11. Var
  12.   CiaBase: pLibrary;
  13.  
  14.  
  15. Const
  16.   CIAANAME = 'ciaa.resource';
  17.   CIABNAME = 'ciab.resource';
  18.  
  19.  
  20. Function AddICRVector
  21.          (iCRBit: Integer;
  22.           interrupt: pInterrupt): pInterrupt;
  23.  
  24. Procedure RemICRVector
  25.          (iCRBit: Integer;
  26.           interrupt: pInterrupt);
  27.  
  28. Function AbleICR (mask: Integer): Integer;
  29. Function SetICR (mask: Integer): Integer;
  30.  
  31.  
  32. End.
  33.